{% extends 'base.html' %} {% block body %} {% if user.is_authenticated %}

Write a Review

{% csrf_token %}
{% endif %}

Reviews

{% for r in reviews %}
{{ r.name }}
{{ r.created_at }}

{{ r.comment }}

{% empty %}
No reviews yet. Be the first to share your thoughts!
{% endfor %}
{% endblock body %}